home *** CD-ROM | disk | FTP | other *** search
- #pragma once on
- /*
- ObjectSpec_da.h
- © Bob Boylan 1996
-
- Revision History
- MacHack 1996 initial creation
- */
- #include "BaseTypes.h"
- #include "Helpers_ut.h"
-
- #include <string>
-
-
-
-
- class ObjectSpec_da
- {
- public:
- // ctor
- ObjectSpec_da();
- ObjectSpec_da( DescType inDescType, Int_32 inPosition );
- // dtor
- virtual ~ObjectSpec_da();
-
- // access
- virtual
- string GetSpecAsString();
-
- // data
- DescType _Kind;
- Int_32 _Pos;
- string _Name;
- string _FormalName;
- protected:
-
- private:
-
- };
-